home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / dictionaries-common / dc-debconf-select.pl next >
Text File  |  2009-05-15  |  6KB  |  173 lines

  1. # -------------------------------------------------------------------------------
  2. # dc-debconf-select.pl:
  3. #  This file will be added to end of dictionaries-common.config-base
  4. #  to make dictionaries-common.config, as well as installed under
  5. #  /usr/share/dictionaries-common for single ispell dicts/wordlists use
  6. # -------------------------------------------------------------------------------
  7.  
  8. sub dico_get_packages (){
  9.   # Get list of packages sharing the question
  10.   my $class    = shift;
  11.   my $question = "shared/packages-$class";
  12.  
  13.   my ($errorcode,$packages) = metaget ($question, "owners");
  14.   return [ split (/\s*,\s*/, $packages) ] unless $errorcode;
  15. }
  16.  
  17. sub dico_parse_languages (){
  18.   # Get a hash reference of package -> list of (e)languages provided by package
  19.   my $class    = shift;
  20.   my $variant  = shift;
  21.   my $packages = shift;
  22.   my %tmphash  = ();
  23.  
  24.   die "No variant (languages|elanguages) string supplied\n" unless $variant;
  25.  
  26.   $packages = &dico_get_packages($class) unless $packages;
  27.  
  28.   foreach $pkg ( @$packages ){
  29.     my ($errorcode, $entry ) = metaget("$pkg/$variant", "default");
  30.     unless ( $errorcode ){
  31.       $entry =~ s/^\s+//;
  32.       $entry =~ s/\s+$//;
  33.       $tmphash{$pkg} = $entry;
  34.     }
  35.   }
  36.   return \%tmphash;
  37. }
  38.  
  39. sub dico_get_all_choices (){
  40.   # Get $choices and $echoices parallel lists sorted after $echoices and formatted for debconf
  41.   my $class       = shift;
  42.   my $languages   = shift;
  43.   my $debug       = 1 if exists $ENV{'DICT_COMMON_DEBUG'};
  44.   my %mappinghash = ();
  45.   my $debug_prefix = "[dico_get_all_choices]";
  46.  
  47.   $languages   = &dico_parse_languages($class,"languages") unless $languages;
  48.  
  49.   my $elanguages  = &dico_parse_languages($class,"elanguages",[ keys %$languages ]);
  50.  
  51.   if ( $debug ){
  52.     print STDERR "-------- $debug_prefix start --------\n";
  53.     my $langlist  = join(', ',sort keys %{$languages});
  54.     my $elanglist = join(', ',sort keys %{$elanguages});
  55.     print STDERR " * Packages with languages: $langlist\n"  if $debug;
  56.     print STDERR " * Packages with elanguages: $elanglist\n" if $debug;
  57.   }
  58.  
  59.   foreach $pkg ( keys %$languages ){
  60.     my @langs  = split(/\s*,\s*/, $languages->{$pkg});
  61.     my @elangs = @langs;
  62.     if ( exists $elanguages->{$pkg} ){
  63.       my @tmp = split(/\s*,\s*/, $elanguages->{$pkg});
  64.       if ( $debug ){
  65.     print STDERR " langs: $#langs, "  . join(', ',@langs)  . "\n";
  66.     print STDERR " tmp:   $#tmp, "    . join(', ',@tmp)    . "\n";
  67.       }
  68.       @elangs = @tmp if ( $#langs == $#tmp );
  69.     }
  70.     foreach $index ( 0 .. $#langs ){
  71.       $mappinghash{$langs[$index]} = $elangs[$index];
  72.     }
  73.   }
  74.   my $echoices = join(', ', sort {lc($a) cmp lc($b)} values %mappinghash);
  75.   my $choices  = join(', ',
  76.               sort {lc($mappinghash{$a}) cmp lc($mappinghash{$b})}
  77.               keys %mappinghash);
  78.   if ( $debug ){
  79.     print STDERR "- Choices:\n[$choices]\n";
  80.     print STDERR "- Echoices:\n[$echoices]\n";
  81.     print STDERR "-------- $debug_prefix end --------\n";
  82.   }
  83.   return $choices, $echoices;
  84. }
  85.  
  86. sub dc_debconf_select (){
  87.   my $class       = shift;
  88.   my $priority    = shift;
  89.   my $question    = "dictionaries-common/default-$class";
  90.   my $packages    = &dico_get_packages($class);
  91.   my $debug       = 1 if exists $ENV{'DICT_COMMON_DEBUG'};
  92.   my $reconfigure = 1 if exists $ENV{'DEBCONF_RECONFIGURE'};
  93.   my $flagdir     = "/var/cache/dictionaries-common";
  94.   my $newflag     = "$flagdir/flag-$class-new";
  95.   my $echoices;
  96.   my @oldchoices  = ();
  97.   my %newchoices  = ();
  98.   my %title       = ('ispell'   => "Dictionaries-common: Ispell dictionary",
  99.              'wordlist' => "Dictionaries-common: Wordlist dictionary"
  100.              );
  101.  
  102.   return unless $packages;
  103.  
  104.   # Get new base list of provided languages
  105.   my $languages = &dico_parse_languages($class,"languages",$packages);
  106.   foreach $pkg ( keys %$languages ) {
  107.     foreach $lang ( split(/\s*,\s*/, $languages->{$pkg}) ){
  108.       $newchoices{$lang}++;
  109.     }
  110.   }
  111.   my $choices = join (', ', sort {lc($a) cmp lc($b)} keys %newchoices);
  112.  
  113.   # Read current value of default ispell dict / wordlist. No need to have
  114.   # critical priority if is in the new list or set to manual. Otherwise
  115.   # ask with critical priority, name for current value is changed or
  116.   # something wrong happened.
  117.   my $curval  = get ($question) || "undefined";
  118.   unless ( $priority ){
  119.     if ( $curval =~ /^Manual.*/ or exists $newchoices{$curval} ){
  120.       $priority = "medium";     #
  121.     } else {
  122.       $priority = "medium"; # No good value, ask. Do not change!!
  123.     }
  124.   }
  125.  
  126.   # Get old list of provided languages
  127.   @oldchoices = split(/\s*,\s*/,metaget ($question, "choices-c"));
  128.   pop @oldchoices;            # Remove the manual entry
  129.   my $oldchoices = join (', ', sort {lc($a) cmp lc($b)} @oldchoices);
  130.   print STDERR
  131.     "** dc_debconf_select: $class, $priority, $question\n" .
  132.     "   new choices:[$choices]\n   old choices:[$oldchoices]\n" if $debug;
  133.  
  134.   # May ask question if there is no match
  135.   if ( scalar %newchoices ) {
  136.     if ( $choices ne $oldchoices) {
  137.       fset ($question, "seen", "false");
  138.       # Let future processes in this apt run know that a new $class element is to be installed
  139.       if ( -d $flagdir ) {
  140.     open ($FLAG,"> $newflag")
  141.       or die "Could not open $newflag for write. Aborting ...\n";
  142.     print $FLAG "1\n";
  143.     close $FLAG;
  144.       }
  145.     }
  146.     my ( $errorcode, $seen ) = fget($question, "seen");
  147.     if ( $seen eq "false" or $reconfigure ){
  148.       ($choices, $echoices ) = &dico_get_all_choices($class,$languages);
  149.       subst ($question, "choices", $choices);
  150.       subst ($question, "echoices", $echoices);
  151.     }
  152.     input ($priority, $question);
  153.     title ($title{$class});
  154.     go ();
  155.     subst ($question, "echoices", $choices); # Be backwards consistent
  156.   }
  157.  
  158.   # If called from dictionaries-common.config, check actual values in debug mode
  159.   if ( $debug && $fromdcconfig ){
  160.     print STDERR "** dictionaries-common.config: Checking some real values for $question\n";
  161.     print STDERR "   Real new Choices-C: " . metaget ($question, "choices-c") . "\n";
  162.     print STDERR "   Real new value: "  . get ($question) . "\n";
  163.     print STDERR "---\n";
  164.   }
  165. }
  166.  
  167. # Local Variables:
  168. # perl-indent-level: 2
  169. # End:
  170.  
  171. 1;
  172.  
  173.